Telegram Group & Telegram Channel
Pyshark — библиотека для анализа сетевого трафика на Python. Она позволяет работать с .pcap-файлами и захватывать трафик в реальном времени. Для работы нужно установить tshark (идёт вместе с Wireshark) и добавить его в PATH.

Пример анализа файла:
import pyshark

cap = pyshark.FileCapture('example.pcap')
for packet in cap:
print(packet)

Пример захвата в реальном времени:

live_cap = pyshark.LiveCapture(interface='eth0')
for packet in live_cap.sniff_continuously(packet_count=10):
print(packet)

Чтобы фильтровать данные, можно использовать дисплейные фильтры Wireshark:

cap = pyshark.FileCapture('example.pcap', display_filter='http')
for packet in cap:
print(packet.http.host)


Ставится командой ⚙️ pip install pyshark
Документация и примеры кода здесь.



tg-me.com/pythonturboru/603
Create:
Last Update:

Pyshark — библиотека для анализа сетевого трафика на Python. Она позволяет работать с .pcap-файлами и захватывать трафик в реальном времени. Для работы нужно установить tshark (идёт вместе с Wireshark) и добавить его в PATH.

Пример анализа файла:

import pyshark

cap = pyshark.FileCapture('example.pcap')
for packet in cap:
print(packet)

Пример захвата в реальном времени:

live_cap = pyshark.LiveCapture(interface='eth0')
for packet in live_cap.sniff_continuously(packet_count=10):
print(packet)

Чтобы фильтровать данные, можно использовать дисплейные фильтры Wireshark:

cap = pyshark.FileCapture('example.pcap', display_filter='http')
for packet in cap:
print(packet.http.host)


Ставится командой ⚙️ pip install pyshark
Документация и примеры кода здесь.

BY Python Turbo. Уютное сообщество Python разработчиков.




Share with your friend now:
tg-me.com/pythonturboru/603

View MORE
Open in Telegram


Python Turbo Уютное сообщество Python разработчиков Telegram | DID YOU KNOW?

Date: |

The S&P 500 slumped 1.8% on Monday and Tuesday, thanks to China Evergrande, the Chinese property company that looks like it is ready to default on its more-than $300 billion in debt. Cries of the next Lehman Brothers—or maybe the next Silverado?—echoed through the canyons of Wall Street as investors prepared for the worst.

That strategy is the acquisition of a value-priced company by a growth company. Using the growth company's higher-priced stock for the acquisition can produce outsized revenue and earnings growth. Even better is the use of cash, particularly in a growth period when financial aggressiveness is accepted and even positively viewed.he key public rationale behind this strategy is synergy - the 1+1=3 view. In many cases, synergy does occur and is valuable. However, in other cases, particularly as the strategy gains popularity, it doesn't. Joining two different organizations, workforces and cultures is a challenge. Simply putting two separate organizations together necessarily creates disruptions and conflicts that can undermine both operations.

Python Turbo Уютное сообщество Python разработчиков from es


Telegram Python Turbo. Уютное сообщество Python разработчиков.
FROM USA